home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dial116.zip / DIAL116.DOC < prev    next >
Text File  |  1993-01-12  |  6KB  |  109 lines

  1.  ╔════════════════════════════════════════════════════════════════════════════╗
  2.  ║                                                                            ║
  3.  ║                  Documentation For DIAL - Version 1.16                     ║
  4.  ║                A Shareware Program Written By Craig Veal                   ║
  5.  ║                                                                            ║
  6.  ╟────────────────────────────────────────────────────────────────────────────╢
  7.  ║                                                                            ║
  8.  ║    I initially developed this program for my own personal use and the      ║
  9.  ║    rights to it are my sole property.  This program is not and has never   ║
  10.  ║    been a public domain program.                                           ║
  11.  ║                                                                            ║
  12.  ║    LIMITED permission is granted for your personal, NON-COMMERCIAL use     ║
  13.  ║    ONLY.                                                                   ║
  14.  ║                                                                            ║
  15.  ║    This program may not be used in any commercial environment without my   ║
  16.  ║    WRITTEN PERMISSION. If you want to use it in a commercial environment,  ║
  17.  ║    simply send me a self addressed stamped envelope and I'll authorize     ║
  18.  ║    you to use this program as long as NO ONE, other than myself, MAKES     ║
  19.  ║    any profit from the sale of this program.                               ║
  20.  ║                                                                            ║
  21.  ║    SHARE this program with others!   Craig D. Veal                         ║
  22.  ║                                      4734B Jacksonville Lane               ║
  23.  ║                                      Andrews AFB MD 20335                  ║
  24.  ║                                      Phone 301-599-1071                    ║
  25.  ║                                                                            ║
  26.  ╚════════════════════════════════════════════════════════════════════════════╝
  27.  
  28.  
  29. Ever want to call someone and can't find the card with the number you want in
  30. your telephone card file?  Do busy numbers aggrivate you?  Yes, lots of phones
  31. have a redial function, but you have to keep pushing the button to redial a 
  32. busy number.  
  33.  
  34. Here's a telephone dialer I wrote to solve my problems - DIAL.COM
  35.  
  36. DIAL will support Comm Ports 1-4 (you'll probably have to use ICP for Comm
  37. Ports 3 and 4), will keep redialing a number automatically if you installed
  38. it to redial and uses a phone number data file you create with your own word
  39. processor.
  40.  
  41.                            INSTALLING DIAL.COM
  42.                            
  43. To use DIAL, you must first install it with IDIAL.  You'll need to know the
  44. following information:
  45.  
  46.   Comm port (Serial Port) your modem uses
  47.     Highest baud rate your modem uses 
  48.     Command to tell the modem to dial (usually ATDT for Hayes compatables)
  49.     Command to tell the modem to hang up (usually ATH0)
  50.     Initialization string you want to send to the modem
  51.     Busy indication value
  52.     Path & filename of your telephone directory
  53.     
  54. To use the redial function, you must initialize the modem to return report 
  55. result codes as DIGITS NOT repeat NOT as words.  For Hays compatable modems
  56. this is usually V0, but check your modem manual to be sure.  My initialization
  57. string looks like this: ATE0 S0=0 L7 X4 V0 M3
  58.  
  59.     AT   - commands the modem that commands will follow
  60.     E0   - tells the modem to set local echo off
  61.     S0=0 - turns the auto answer mode off
  62.     L7   - sets the internal speaker volume to maximum
  63.     X4   - enables extended result codes
  64.     V0   - sets result codes to DIGITS
  65.     M3   - turns internal speaker off during dialing then back on
  66.     
  67.  
  68.                     CREATING YOUR OWN TELEPHONE DIRECTORY
  69.  
  70. To create your telephone directory, use any word processor that creates ASCII
  71. files.  If you don't know whether your word processor creates ASCII files, just
  72. create a sample file then use the DOS TYPE command to look at the file.  If you
  73. can read it without problems then everything is probably OK.  If any part of 
  74. the sample file has strange or graphics type characters in it such as ╩ack
  75. (instead of Jack) or possibly ╙usan (instead of Susan) then you won't be able
  76. to use that word processor.
  77.  
  78. Each name entry in your directory can be any length you desire, however only 
  79. the first 25 characters will be displayed to confirm who you're calling. Use
  80. a single space to name entry from the COMPLETE phone number (including long 
  81. distance dialing access numbers).  Each name in the directory MUST BE IN 
  82. CAPITAL LETTERS!  If you don't use all capital letters, the name WILL NOT BE 
  83. FOUND!  You can use initials, nicknames or whatever you want to use to identify
  84. each entry, but they MUST be in all caps.  Here is a sample:
  85.  
  86.     SCHOOL 555-7890
  87.     MOVIE 555-6789
  88.     PIZZA 555-5678
  89.     DEBBIE WORK 555-4567
  90.     JOE'S HOME 555-3456
  91.     BOB AND CINDY'S ROYAL CLOTHING STORE AND BARBER SHOP 555-2345
  92.     
  93. When you're ready to call any of the places or people in your telephone 
  94. directory simply type DIAL (lower case letters is ok too) followed by the
  95. name you want to call such as "dial babysitter".  DIAL converts the name of
  96. the person or place you're calling to all capital letters and trys to match
  97. it with an entry in your telephone directory.  If it finds a match it will
  98. dial the number.  If it doesn't find a match then it will tell you that it
  99. did not find a match.
  100.  
  101. If you want to call a number that you know is NOT in your telephone directory
  102. simply type DIAL without a name and you'll be asked for the number you want
  103. to call then dial will call it.  If you don't specifiy a phone number DIAL
  104. will terminate.
  105.  
  106. If you have comments, suggestions or complaints please send them to me at the
  107. address shown above.
  108.  
  109.